5f213e8c686b9f9e63402fcd2009a66903b3c5bd,arphandler/implementation/src/main/java/org/opendaylight/l2switch/arphandler/flow/InitialFlowWriter.java,InitialFlowWriterProcessor,createArpToControllerFlow,#number#number#,181

Before Change


          .build();

      // Create an Apply Action
      ApplyActions applyActions = new ApplyActionsBuilder().setAction(ImmutableList.of(getSendToControllerAction()))
          .build();

      // Wrap our Apply Action in an Instruction

After Change


          .setEthernetMatch(ethernetMatchBuilder.build())
          .build();

      List<Action> actions = new ArrayList<Action>();
      actions.add(getSendToControllerAction());
      if(isHybridMode) {
        actions.add(getNormalAction());
      }

      // Create an Apply Action